home *** CD-ROM | disk | FTP | other *** search
- # Quarterdeck CADVision Development Corp. PPP script
-
- STRING username
- STRING password
- STRING IPaddress
-
- TRACE OFF
-
- SetTimeout 60 # reset maximum script timeout
-
- # Get username from access method
- CfgGetValue "Username" username
- IF result = 0 THEN
- ABORT "Can't load Username from qdeck.ini"
- ENDIF
-
- # get password from access method
- CfgGetValue "Password" password
- IF result = 0 THEN
- ABORT "Can't load Password from qdeck.ini"
- ENDIF
-
- CommWaitFor "ogin:"
- CommSend username
- CommSend "%r"
-
- CommWaitFor "assword:"
- CommSend password
- CommSend "%r"
-
- DELAY 2
-
- Print "PPP mode selected attempting to negotiate."
-
- END
-
-